home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="/">
- <HTML>
- <HEAD>
- <STYLE>
- td.x { font-family:Verdana,Arial; font-size:10pt; text-align:justify; margin-left:4pt; margin-right:4pt; }
- li.x { font-family:Verdana,Arial; font-size:10pt; text-align:justify; margin-left:4pt; margin-right:4pt; }
- p.x { font-family:Verdana,Arial; font-size:10pt; text-align:justify; margin-left:4pt; margin-right:4pt; }
- h3.x { font-family:Verdana,Arial; font-size:14pt; text-align:justify; margin-left:4pt; margin-right:4pt; }
- </STYLE>
- </HEAD>
- <BODY leftmargin="10">
- <H3 class="x">The Filteset Report</H3>
- <table cellpadding="5" border="1" bordercolor="#E0E0E0" cellspacing="0" STYLE="font-family: verdana; font-size:10">
- <tr>
- <td class="x"><B>Id</B></td>
- <td class="x"><B>Filter Name</B></td>
- <td class="x"><B>PktLog</B></td>
- <td class="x"><B>HostLog</B></td>
- <td class="x"><B>ParseVpn</B></td>
- <td class="x"><B>NoReport</B></td>
- <td class="x"><B>ZeroDay</B></td>
- <td class="x"><B>ZeroMonth</B></td>
- </tr>
- <xsl:for-each select="TrafficMonitor/Filter">
- <tr>
- <td class="x">
- <xsl:value-of select="Id"/>
- </td>
- <td class="x">
- <xsl:value-of select="Name"/>
- </td>
- <td class="x">
- <xsl:if test="PackLogDest='0'">-</xsl:if>
- <xsl:if test="PackLogDest='1'">File</xsl:if>
- <xsl:if test="PackLogDest='2'">Db</xsl:if>
- </td>
- <td class="x">
- <xsl:if test="HhLogDest='0'">-</xsl:if>
- <xsl:if test="HhLogDest='1'">File</xsl:if>
- <xsl:if test="HhLogDest='2'">Db</xsl:if>
- </td>
- <td class="x">
- <xsl:if test="ParseVpn='0'">-</xsl:if>
- <xsl:if test="ParseVpn='1'">+</xsl:if>
- </td>
- <td class="x">
- <xsl:if test="ExcludeCnt='0'">-</xsl:if>
- <xsl:if test="ExcludeCnt='1'">+</xsl:if>
- </td>
- <td class="x">
- <xsl:if test="ZeroEveryDay='0'">-</xsl:if>
- <xsl:if test="ZeroEveryDay='1'">+</xsl:if>
- </td>
- <td class="x">
- <xsl:if test="ZeroEveryMonth='0'">-</xsl:if>
- <xsl:if test="ZeroEveryMonth='1'">+</xsl:if>
- </td>
- </tr>
- </xsl:for-each>
- </table>
-
- <p class="x">Legend:</p>
- <ul>
- <li class="x">PktLog - Packet Logging</li>
- <li class="x">HostLog - HTTP Host Header Logging</li>
- <li class="x">ParseVpn - parse unencrypted VPN packets before processing in this filter</li>
- <li class="x">NoReport - Exclude the traffic counters of this filter from reports</li>
- <li class="x">ZeroDay - Reset counters to zero every day at 0:00 AM</li>
- <li class="x">ZeroMonth - Reset counters to zero every 1st day of month at 0:00</li>
- </ul>
-
- <p class="x">
- <i>Last Modified:
- <xsl:value-of select="TrafficMonitor/DateTime"/>
- </i></p>
- </BODY>
- </HTML>
- </xsl:template>
- </xsl:stylesheet>
-